home *** CD-ROM | disk | FTP | other *** search
- package javax.help;
-
- public class BadIDException extends IllegalArgumentException {
- private Map map;
- // $FF: renamed from: id java.lang.String
- private String field_0;
- // $FF: renamed from: hs javax.help.HelpSet
- private HelpSet field_1;
-
- public BadIDException(String var1, Map var2, String var3, HelpSet var4) {
- super(var1);
- this.map = var2;
- this.field_0 = var3;
- this.field_1 = var4;
- }
-
- public Map getMap() {
- return this.map;
- }
-
- public String getID() {
- return this.field_0;
- }
-
- public HelpSet getHelpSet() {
- return this.field_1;
- }
- }
-